home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / DB_CLIPP / 2614.ZIP / CL.ZIP / CL.BAT next >
DOS Batch File  |  1990-12-22  |  315b  |  19 lines

  1. @echo off
  2. cls
  3. if "%1"=="" goto link
  4. for %%f in (%1 %2 %3 %4 %5 %6 %7 %8 %9) do clipper %%f /n/b
  5. if errorlevel 1 goto badcompile
  6. goto link
  7. :badcompile
  8.   echo  Compile failed!
  9.   goto end
  10. :link
  11.   rtlink @pirs
  12.   if errorlevel 1 goto badlink
  13.   goto end
  14. :badlink
  15.   echo  Link failed!
  16.   goto end
  17. :end
  18.  
  19.